@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Montez&display=swap");

:root {
  --title-font: "Manrope", sans-serif !important;
  --body-font: "Inter", sans-serif;
  --style-font: "Montez", cursive !important;
}

::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  /* outline: 1px solid red; */
}

.cursor {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  --size: 40px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 1px solid #24aad9;
  margin: calc(var(--size) * -0.5) 0 0 calc(var(--size) * -0.5);
  transition: transform 0.85s cubic-bezier(0, 0.02, 0, 1);
  display: none;
  pointer-events: none;

  @media (pointer: fine) {
    display: block;
  }
}

.cursor2 {
  --size: 2px;
  transition-duration: 0.7s;
}

:before,
:after {
  box-sizing: border-box;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.font1 {
  font-family: var(--style-font);
}

.font2 {
  font-family: var(--title-font);
}

.container {
  max-width: 1200px;
  margin: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.v-center {
  align-items: center;
}

.blueTxt {
  color: #1ca8cb !important;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}

/* header */
.header {
  display: block;
  width: 100%;
  position: relative;
  z-index: 99;
  padding: 15px;
}
.header .item-left {
  flex: 0 0 15%;
}
.header .logo img {
  width: 100%;
  height: auto;
  color: #555555;
  text-decoration: none;
}
.header .item-center {
  flex: 0 0 58%;
}
.header .item-right {
  flex: 0 0 27%;
  display: flex;
  justify-content: flex-end;
}
.header .item-right a {
  text-decoration: none;
  font-size: 16px;
  color: #555555;
  display: inline-block;
  margin-left: 10px;
  transition: color 0.3s ease;
}
.header .menu > ul > li {
  display: inline-block;
  line-height: 50px;
  margin-left: 25px;
}
.header .menu > ul > li > a {
  font-size: 15px;
  /* font-weight: 500; */
  /* color: #555555; */
  color: white;
  position: relative;
  text-transform: capitalize;
  transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: #ffffff;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  transition: all 0.5s ease;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 992px) {
  .header .menu > ul > li.menu-item-has-children:hover .sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }
}
.header .menu > ul > li .sub-menu > ul > li {
  line-height: 1;
}
.header .menu > ul > li .sub-menu > ul > li > a {
  display: inline-block;
  padding: 10px 0;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
}
.header .menu > ul > li .single-column-menu {
  min-width: 200px;
  max-width: 250px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li {
  line-height: 1;
  display: block;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
  padding: 10px 0;
  display: inline-block;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
  flex: 0 0 25%;
  padding: 0 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title {
  font-size: 16px;
  color: black;
  /* font-weight: 500; */
  line-height: 1;
  padding: 10px 0;
}
.header
  .menu
  > ul
  > li
  .sub-menu.mega-menu-column-4
  > .list-item.text-center
  .title {
  text-align: center;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  margin-top: 10px;
  height: 300px;
  object-fit: cover;
}
/* .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a {
  color: black;
} */

.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}

/*responsive*/
@media (max-width: 991px) {
  /* .header .item-center {
    order: 3;
    flex: 0 0 100%;
  }
  .header .item-left,
  .header .item-right {
    flex: 0 0 auto;
  } */

  /* .header {
    padding: 15px 0 !important;
  } */
  .header .item-center {
    order: 3;
    flex: 0 0 100%;
  }

  .header .item-left {
    flex: 0 0 60%; /* Set width to 70% */
  }

  .header .item-right {
    flex: 0 0 40%; /* Set width to 30% */
  }
  .v-center {
    justify-content: space-between;
  }
  .header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  .header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    /* background-color: #333333; */
    background-color: white;
    width: 24px;
    position: relative;
  }
  .header .mobile-menu-trigger span:before,
  .header .mobile-menu-trigger span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: #333333; */
    background-color: white;
  }
  .header .mobile-menu-trigger span:before {
    top: -6px;
  }
  .header .mobile-menu-trigger span:after {
    top: 6px;
  }
  .header .item-right {
    align-items: center;
  }

  .header .menu {
    position: fixed;
    width: 320px;
    background-color: #ffffff;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }
  .header .menu.active {
    transform: translate(0%);
  }
  .header .menu > ul > li {
    line-height: 1;
    margin: 0;
    display: block;
  }
  .header .menu > ul > li > a {
    line-height: 50px;
    color: black !important;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header .menu > ul > li > a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }
  .header .menu .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: #ffffff;
    top: 0;
  }
  .header .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    display: none;
  }
  .header .menu .mobile-menu-head.active .go-back {
    display: block;
  }
  .header .menu .mobile-menu-head .current-menu-title {
    font-size: 15px;
    /* font-weight: 500; */
    color: #000000;
  }
  .header .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 25px;
  }
  .header .menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .header .menu > ul > li .sub-menu.mega-menu,
  .header .menu > ul > li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }
  .header .menu > ul > li .sub-menu.active {
    display: block;
  }
  @keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }
  @keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0%);
    }
    100% {
      opacity: 0;
      transform: translateX(100%);
    }
  }
  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
    margin-top: 0;
  }
  .header
    .menu
    > ul
    > li
    .sub-menu.mega-menu-column-4
    > .list-item.text-center
    .title {
    margin-bottom: 20px;
  }
  .header
    .menu
    > ul
    > li
    .sub-menu.mega-menu-column-4
    > .list-item.text-center:last-child
    .title {
    margin-bottom: 0px;
  }
  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
    flex: 0 0 100%;
    padding: 0px;
  }
  .header .menu > ul > li .sub-menu > ul > li > a,
  .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
    display: block;
  }
  .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
    margin-bottom: 15px;
  }
  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }
  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
}

/* .menu-main > li > a {
  color: white;
} */

.mainHeroParent {
  /* background: url(../img/bg/bg-1.jfif); */
  /* background: url(../img/bg/Newfolder/pexels-tomfisk-2169857.jpg); */
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}

.startTypingEffect2::placeholder {
  color: black;
}

.mainHero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  /*  */
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.116);
}

.halfHeroParent {
  background: url(../img/bg/bg-6.jpg);
  /* background: url(../img/bg/pexels-pixabay-38238.jpg); */
  /* background: url(../img/bg/Newfolder2/pexels-pixabay-50594.jpg); */
  background-position: center bottom;
  background-size: cover;
  background-attachment: fixed;
}

.halfHero {
  height: 50vh;
  /* display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center; */
}

.halfHero a {
  color: black;
}

.halfHeroContent h2,
h4 {
  color: white;
}
.halfHeroContent a {
  color: white;
}
.halfHeroContent span {
  color: white;
}

.whiteButton {
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
  padding: 10px 20px;
  border-radius: 100px;
  background: white;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  font-size: 15px;
}

.whiteButton:hover {
  background: white;
}

.whiteButton > svg {
  width: 34px;
  margin-left: 10px;
  transition: transform 0.3s ease-in-out;
}

.whiteButton:hover svg {
  transform: translateX(5px);
}

.whiteButton:active {
  transform: scale(0.95);
}

.whiteButton span {
  text-wrap: nowrap;
}
.blueButton {
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
  padding: 10px 20px;
  border-radius: 100px;
  background: #1ca8cb;
  color: white;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  font-size: 15px;
  cursor: pointer;
}

.blueButton:hover {
  background: #1ca8cb;
}

.blueButton > svg {
  width: 34px;
  margin-left: 10px;
  transition: transform 0.3s ease-in-out;
}

.blueButton:hover svg {
  transform: translateX(5px);
}

.blueButton:active {
  transform: scale(0.95);
}

.blueButton span {
  text-wrap: nowrap;
}

.mainHero h1 {
  /* font-size: 3rem;
  font-weight: 900 !important; */
  font-weight: 800;
  font-size: 3rem;
}

.ui-input-container {
  position: relative;
  /* width: 300px; */
}

.ui-input {
  width: 100% !important;
  padding: 10px 10px 10px 40px !important;
  font-size: 0.9em !important;
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  outline: none !important;
  background-color: transparent !important;
  transition: border-color 0.3s;
}

.ui-input:focus {
  border-color: #6c63ff;
}

.ui-input-underline {
  position: absolute !important;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  /* background-color: #6c63ff; */
  transform: scaleX(0);
  transition: transform 0.3s;
}

.ui-input:focus + .ui-input-underline {
  transform: scaleX(1);
}

.ui-input-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 0;
  /* background-color: rgba(108, 99, 255, 0.1); */
  transition: width 0.3s;
}

.ui-input:focus ~ .ui-input-highlight {
  width: 100%;
}

.ui-input-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  transition: color 0.3s;
}

.ui-input:focus ~ .ui-input-icon {
  color: #6c63ff;
}

.ui-input-icon svg {
  width: 16px;
  height: 16px;
}

.InputContainer {
  height: 40px;
  margin: auto;
  display: flex;
  max-width: 400px;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  padding-left: 15px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.075);
}

.InputContainer .input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 0.9em;
  caret-color: rgb(255, 81, 0);
}

.labelforsearch {
  cursor: text;
  padding: 0px 12px;
}

.InputContainer .searchIcon {
  width: 13px;
}

.InputContainer .border {
  height: 40%;
  width: 1.3px;
  background-color: rgb(223, 223, 223);
}

.InputContainer .micIcon {
  width: 12px;
}

.InputContainer.micButton {
  padding: 0px 15px 0px 12px;
  border: none;
  background-color: transparent;
  height: 40px;
  cursor: pointer;
  transition-duration: 0.3s;
}

.InputContainer .searchIcon path {
  fill: rgb(114, 114, 114);
}

.InputContainer .micIcon path {
  fill: rgb(255, 81, 0);
}

.InputContainer .micButton:hover {
  background-color: rgb(255, 230, 230);
  transition-duration: 0.3s;
}

.categorySec {
  background-image: url(../img/bg/light-bg.png);
  min-height: 200px;
  background-size: contain;
}

/* category carousel */

.swiper1 {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

.swiper1 img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

/* swiper 2 */
.highlightCategory main {
  position: relative;
  width: calc(min(90rem, 90%));
  margin: 0 auto;
  display: flex;
  align-items: center;
  /* min-height: 100vh; */
  /* min-height: 100svh; */
  column-gap: 3rem;
  padding-block: min(20vh, 3rem);
  overflow: hidden;
}

.swiper2 {
  width: 100%;
  padding: 1.875rem 0;
}

.swiper2 .swiper-slide {
  /* width: 18.75rem; */
  /* width: 10rem; */
  height: 28rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-start;
  box-shadow: 0.063rem 0.5rem 1.25rem hsl(0deg 0% 0% / 12.16%);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.swiper2 .swiper-slide .swiper-slide-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: rotate(180deg);
  line-height: 0;
  bottom: -0.063rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.swiper2 .swiper-slide .swiper-slide-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  z-index: -1;
  transition: 0.3s ease-in-out;
  transform: rotate(-180deg);
}

.viewAllBtn {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  border: 1px solid white;
  color: white;
  width: 140px;
  z-index: 1111;
  cursor: pointer;
  text-align: center;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.swiper2 .swiper-slide .swiper-slide-img svg {
  position: relative;
  display: block;
  width: calc(300% + 1.3px);
  height: 5rem;
  transform: rotateY(180deg);
}

.swiper2 .swiper-slide .swiper-slide-img .shape-fill {
  fill: #ffffff;
}

.swiper2 .swiper-slide .swiper-slide-content {
  background: #fff;
  padding: 0 1.65rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  width: 100%;
}

.swiper2 .swiper-slide .swiper-slide-content > div {
  transform: translateY(-1.25rem);
}

.swiper2 .swiper-slide .swiper-slide-content h2 {
  color: #000;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 0.425rem;
  text-transform: capitalize;
  letter-spacing: 0.02rem;
}

.swiper2 .swiper-slide .swiper-slide-content p {
  color: #000;
  line-height: 1.6;
  font-size: 0.9rem;
  display: -webkit-box;
  /* -webkit-line-clamp: 2; */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.swiper2 .swiper-slide .swiper-slide-content .show-more {
  width: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #24aad9;
  border-radius: 50%;
  box-shadow: 0px 0.125rem 0.875rem #24aad96b;
  margin-top: 1em;
  margin-bottom: 0.2em;
  height: 0;
  opacity: 0;
  transition: all 0.3s ease-in;
  margin-left: auto;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
}

/* .swiper2 .swiper-slide .swiper-slide-content .show-more:hover {
  background: #1184ac;
} */

.swiper2 .swiper-slide .swiper-slide-content .show-more svg {
  width: 1.75rem;
  color: #fff;
}

/* .swiper2 .swiper-slide-active:hover img {
  transform: scale(1.2) rotate(-185deg);
} */

/* .swiper2 .swiper-slide-active:hover .show-more {
  opacity: 1;
  height: 3.125rem;
}

.swiper2 .swiper-slide-active:hover p {
  display: block;
  overflow: visible;
} */

.swiper2 .swiper-3d .swiper-slide-shadow-left,
.swiper2 .swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

@media screen and (min-width: 93.75rem) {
  .swiper2 {
    width: 85%;
  }
}

.packageContainer {
  background: url(../img/b2c743489361afdba10cbf7f1b6b6745.jfif);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
}

.bottomBanner {
  background: url(../img/traveler-image2.jpg);
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

/* testimonials */
/* 
.testimonialsContainer {
  min-height: 100vh;
  display: grid;
  justify-content: center;
  align-items: center;
  background-color: hsl(210, 46%, 95%);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 1.7rem 1.7rem 0;
}

.testimonial:nth-child(1) {
  background-color: hsl(263, 55%, 52%);
}
.testimonial:nth-child(2) {
  background-color: hsl(217, 19%, 35%);
}
.testimonial:nth-child(3) {
  background-color: hsl(0, 0%, 100%);
}
.testimonial:nth-child(4) {
  background-color: hsl(219, 29%, 14%);
}

#testimonials {
  display: inline-grid;
  gap: 1.45rem;
  grid-template-columns: 1fr;
  grid-template-areas:
    "daniel"
    "jonathan"
    "jeanette"
    "patrick";
}

@media (min-width: 570px) {
  #testimonials {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "daniel daniel"
      "jonathan jeanette"
      "patrick patrick";
  }
}

@media (min-width: 853px) {
  #testimonials {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
      "daniel daniel jonathan"
      "jeanette patrick patrick";
  }
}

@media (min-width: 1200px) {
  #testimonials {
    grid-template-columns: repeat(2, 25rem);
    grid-template-areas:
      "daniel daniel jonathan jonathan"
      "jeanette patrick patrick";
  }
}

.testimonial {
  padding: 1.6rem;
  border-radius: 0.5rem;
  box-shadow: 0.625rem 0.625rem 0.625rem rgba(207, 207, 207, 0.5);
}

.testimonial figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 1.2rem;
}

.testimonial img {
  grid-area: 1 / 1 / 3 / 2;
  align-self: center;
  width: 2.1875rem;
  height: auto;
  border-radius: 50%;
}

.testimonial .name {
  align-self: end;
  font-weight: 600;
}

.testimonial .quote-part-1 {
  font-size: 1.4rem;
  line-height: 1.3em;
  margin: 1.5rem 0;
}

.testimonial .quote-part-2 {
  line-height: 1.5em;
}

.testimonial.daniel {
  background-image: url("data:image/svg+xml,%3Csvg width='104' height='102' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M104 102V59.727H84.114c0-5.871.689-11.182 2.068-15.933 1.379-4.75 3.42-9.287 6.125-13.61C95.01 25.86 98.909 22.257 104 19.375V0c-9.758 4.27-17.712 9.874-23.864 16.813-6.151 6.939-10.712 14.545-13.681 22.818C63.485 47.904 62 59.941 62 75.74V102h42zm-62 0V59.727H22.114c0-5.871.689-11.182 2.068-15.933 1.379-4.75 3.42-9.287 6.125-13.61C33.01 25.86 36.909 22.257 42 19.375V0c-9.652 4.27-17.58 9.874-23.784 16.813C12.01 23.752 7.424 31.358 4.455 39.631 1.485 47.904 0 59.941 0 75.74V102h42z' fill='%23A775F1' fill-rule='nonzero'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 95% 0%;
  grid-area: daniel;
}

.testimonial.jonathan {
  grid-area: jonathan;
}

.testimonial.jeanette {
  grid-area: jeanette;
}

.testimonial.patrick {
  grid-area: patrick;
}

.testimonial.daniel,
.testimonial.jonathan,
.testimonial.patrick {
  color: hsl(0, 0%, 81%);
}
.testimonial.jeanette {
  color: hsl(219, 29%, 14%);
}

.attribution {
  background-color: rgba(55, 65, 81, 0.1);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.7rem 0;
  padding: 0.3rem 0.5rem;
  border-radius: 0.3rem;
}

.attribution p:first-of-type::after {
  content: " ";
  white-space: pre-wrap;
}

.attribution a {
  color: rgba(167, 117, 241, 0.8);
  font-weight: 700;
}

.attribution a:hover {
  color: rgba(167, 117, 241, 0.6);
}

.attribution a:active {
  color: rgba(167, 117, 241, 0.8);
} */

/* client carousel */

@keyframes clientSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.clientLogos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.clientLogos:before,
.clientLogos:after {
  content: "";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 2;
}
.clientLogos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}
.clientLogos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.clientLogos:hover .logos-slide {
  animation-play-state: paused;
}
.logos-slide {
  display: inline-block;
  animation: 35s clientSlide infinite linear;
  -webkit-animation: 35s clientSlide infinite linear;
}
.logos-slide img {
  height: 50px;
  margin: 0 40px;
}

/* footer */

footer {
  padding: 4em 0;
}

.footer-06 {
  padding-top: 0 !important;
  background: #302939;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.footer-06:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0.2;
  z-index: -1;
  background: #d7b8ff;
  background: -moz-radial-gradient(
    center,
    ellipse cover,
    #d7b8ff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-gradient(
    radial,
    center center,
    0px,
    center center,
    100%,
    color-stop(0%, #d7b8ff),
    color-stop(100%, rgba(255, 255, 255, 0))
  );
  background: -webkit-radial-gradient(
    center,
    ellipse cover,
    #d7b8ff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -o-radial-gradient(
    center,
    ellipse cover,
    #d7b8ff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -ms-radial-gradient(
    center,
    ellipse cover,
    #d7b8ff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-radial-gradient(
    center,
    ellipse,
    #d7b8ff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -o-radial-gradient(
    center,
    ellipse,
    #d7b8ff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: radial-gradient(
    ellipse at center,
    #d7b8ff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d7b8ff', endColorstr='#ffffff', GradientType=1 );
}
.footer-06 .subheading {
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-06 .heading-section {
  color: #fff;
  font-size: 30px;
  text-transform: uppercase;
}
.footer-06 .footer-heading {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}
.footer-06 .footer-heading .logo {
  color: #fff;
}
.footer-06 p {
  color: rgba(255, 255, 255, 0.3);
}
.footer-06 a {
  color: #fff;
}
.footer-06 .list-unstyled li a {
  color: rgba(255, 255, 255, 0.5);
}
.footer-06 .subscribe-form {
  border-radius: 40px;
  background: #fff;
  padding: 3px;
}
.footer-06 .subscribe-form .form-group {
  position: relative;
  margin-bottom: 0;
  border-radius: 0;
}
.footer-06 .subscribe-form .form-group input {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: rgba(0, 0, 0, 0.3) !important;
  font-size: 16px;
  height: 56px;
  border-radius: 0;
}
.footer-06 .subscribe-form .form-group input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.3) !important;
}
.footer-06 .subscribe-form .form-group input::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.3) !important;
}
.footer-06 .subscribe-form .form-group input:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(0, 0, 0, 0.3) !important;
}
.footer-06 .subscribe-form .form-group input:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.3) !important;
}
.footer-06 .subscribe-form .form-group input:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.footer-06 .subscribe-form .form-group .submit {
  color: #fff !important;
  display: block;
  width: 150px;
  height: 56px;
  font-size: 14px;
  background: #352d3f !important;
  border: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 40px;
}
.footer-06 .subscribe-form .form-group .submit:hover,
.footer-06 .subscribe-form .form-group .submit:focus {
  text-decoration: none !important;
  outline: none !important;
}
.footer-06 .aside-stretch {
  background: #322b3c;
}
.footer-06 .aside-stretch:after {
  background: #322b3c;
}
.footer-06 .aside-stretch-right {
  background: #372f42;
}
.footer-06 .aside-stretch-right:after {
  background: #372f42;
}

.bottomCopyright {
  background-color: #322b3c;
}

.categoryCarousel main {
  /* width: min(980px, 85%); */
  margin: 0 auto;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: min(20vh, 5em);
}

.categoryCarousel main .header {
  margin-bottom: 55px;
}

@media screen and (max-width: 600px) {
  .categoryCarousel main .header {
    margin-bottom: 70px !important;
  }
}

.categoryCarousel main .header h1 {
  font-weight: 800;
  font-size: 3rem;
  margin: 5px -5px 15px;
}

.categoryCarousel main .header span {
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  color: #471aa0;
}

.categoryCarousel main .header p {
  max-width: min(40ch, 100% - 2rem);
  line-height: 1.6;
  color: #565656;
}

.categoryCarousel main .item {
  width: 100%;
  height: 300px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.categoryCarousel main .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.categoryCarousel main .item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 28px 25px;
  color: #fff;
  background: linear-gradient(0deg, #020024 0%, #000032a1 3%, #17d9ff00 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.categoryCarousel main .item .overlay span {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 60px;
  padding: 10px 20px;
  display: inline-block;
}

.categoryCarousel main .item .overlay > div h2 {
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.owl-nav {
  position: absolute;
  top: -100px;
  right: 0;
}

@media screen and (max-width: 600px) {
  .owl-nav {
    top: -60px !important;
  }
}

.owl-nav button {
  background: #fff !important;
  border: 1px solid #24aad9 !important;
  width: 45px;
  height: 45px;
  font-size: 25px !important;
  box-shadow: 0px 0px 17px #00000005;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.owl-nav button:nth-of-type(1) {
  margin-right: 13px;
}

.owl-nav button:hover {
  color: black !important;
}

.packageCard p {
  font-size: 14px;
  font-weight: normal !important;
}

/* highlight color text */

.button-animation {
  position: relative;
  display: inline-flex;
  /* padding: 20px 30px; */
  /* color: #24aad9 !important; */
  color: white;
  text-transform: uppercase;
  overflow: hidden;
  /* letter-spacing: 4px; */
  transition: 0.5s;
}

.button-animation span {
  position: absolute;
  display: block;
}

.button-animation span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #03e9f4);
  animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}

.button-animation span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #03e9f4);
  animation: btn-anim2 1s linear infinite;
  animation-delay: 0.25s;
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%,
  100% {
    top: 100%;
  }
}

.button-animation span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #03e9f4);
  animation: btn-anim3 1s linear infinite;
  animation-delay: 0.5s;
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%,
  100% {
    right: 100%;
  }
}

.button-animation span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #03e9f4);
  animation: btn-anim4 1s linear infinite;
  animation-delay: 0.75s;
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%,
  100% {
    bottom: 100%;
  }
}

.button-animation:hover {
  background-color: #03e9f4;
  color: #fff !important;
  border-radius: 5px;
  box-shadow: 0 0 5px #03e9f4, 0 0 25px #03e9f4, 0 0 50px #03e9f4,
    0 0 100px #03e9f4;
}

/* package gallery */

.packageGallery {
  position: relative;
  width: 760px;
  height: 305px;
}

.packageGallery:hover .packageItem {
  cursor: pointer;
}

.packageItem {
  position: absolute;
  width: 175px;
  height: 150px;
  overflow: hidden;
  transition: transform 0.9s, width 0.9s, height 0.9s;
}

.packageItem img {
  width: 100%;
  height: 100%;
}

.packageGallery div[data-pos="0"] {
  /* width: 300px; */
  /* height: inherit; */
  width: 100%;
  height: auto;
  z-index: 10;
}

.packageGallery div[data-pos="1"] {
  transform: translate(305px, 0);
  -webkit-transform: translate(305px, 0);
  -moz-transform: translate(305px, 0);
  -ms-transform: translate(305px, 0);
  -o-transform: translate(305px, 0);
}

.packageGallery div[data-pos="2"] {
  transform: translate(485px, 0);
  -webkit-transform: translate(485px, 0);
  -moz-transform: translate(485px, 0);
  -ms-transform: translate(485px, 0);
  -o-transform: translate(485px, 0);
}

.packageGallery div[data-pos="3"] {
  transform: translate(305px, 155px);
  -webkit-transform: translate(305px, 155px);
  -moz-transform: translate(305px, 155px);
  -ms-transform: translate(305px, 155px);
  -o-transform: translate(305px, 155px);
}

.packageGallery div[data-pos="4"] {
  transform: translate(485px, 155px);
  -webkit-transform: translate(485px, 155px);
  -moz-transform: translate(485px, 155px);
  -ms-transform: translate(485px, 155px);
  -o-transform: translate(485px, 155px);
}

/* Mobile view adjustments */
@media (max-width: 800px) {
  .packageGallery {
    width: 405px;
    height: 660px;
  }

  .packageItem {
    /* width: 180px; */
    width: 200px;
    height: 150px;
  }

  .packageGallery div[data-pos="0"] {
    width: inherit;
    height: 350px;
  }

  .packageGallery div[data-pos="1"] {
    transform: translate(0, 355px);
    -webkit-transform: translate(0, 355px);
    -moz-transform: translate(0, 355px);
    -ms-transform: translate(0, 355px);
    -o-transform: translate(0, 355px);
  }

  .packageGallery div[data-pos="2"] {
    transform: translate(0, 510px);
    -webkit-transform: translate(0, 510px);
    -moz-transform: translate(0, 510px);
    -ms-transform: translate(0, 510px);
    -o-transform: translate(0, 510px);
  }

  .packageGallery div[data-pos="3"] {
    transform: translate(205px, 355px);
    -webkit-transform: translate(205px, 355px);
    -moz-transform: translate(205px, 355px);
    -ms-transform: translate(205px, 355px);
    -o-transform: translate(205px, 355px);
  }

  .packageGallery div[data-pos="4"] {
    transform: translate(205px, 510px);
    -webkit-transform: translate(205px, 510px);
    -moz-transform: translate(205px, 510px);
    -ms-transform: translate(205px, 510px);
    -o-transform: translate(205px, 510px);
  }
}

.packageSidebar {
  position: relative;
  top: 0;
}

/* input design */

/* Input container */
.input-container {
  position: relative;
  /* margin: 20px; */
}

/* Input field */
.input-field {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  background-color: transparent;
}

/* Input label */
.input-label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  color: rgba(204, 204, 204, 0);
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Input highlight */
.input-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #007bff;
  transition: all 0.3s ease;
}

/* Input field:focus styles */
.input-field:focus + .input-label {
  top: -10px;
  font-size: 12px;
  color: #007bff;
}

.input-field:focus + .input-label + .input-highlight {
  width: 100%;
}

.input-field::placeholder {
  font-size: 14px;
}

.packageContent svg {
  color: #1ca8cb;
  width: 1rem;
  height: 1rem;
}

/* itinerary accordion */
/* Privacy Center */
.privacy-center {
  width: 100%;
  overflow: auto;
  margin: 0 auto;
  border-radius: 8px;
  position: relative;
}

.privacy-center--header {
  padding: 0 0 16px;
}

.privacy-center--body {
  /* margin: 0 32px; */
  border-top: 1px solid #dedede;
  /* overflow: auto; */
}

.privacy-center-intro {
  padding: 24px 0;
  line-height: 150%;
  border-bottom: 1px solid #dedede;
}

.privacy-container {
  margin: 0 auto;
  transition: all ease-in-out 0.36s;
  border-radius: 3px;
  -webkit-transition: all ease-in-out 0.36s;
  -moz-transition: all ease-in-out 0.36s;
  -ms-transition: all ease-in-out 0.36s;
  -o-transition: all ease-in-out 0.36s;
}

.privacy-settings .privacy-setting {
  padding: 24px 0;
}

.privacy-settings .privacy-label {
  display: flex;
  flex-grow: 1;
  position: relative;
  padding-right: 24px;
  font-weight: 600;
  transition: rotate ease-in-out 0.36s;
  background-color: transparent;
  border: none;
}

.privacy-settings .privacy-label::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url("https://cdn-icons-png.flaticon.com/128/5343/5343102.png");
  background-size: 12px auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-right: 16px;
  transition: transform ease-in-out 0.36s;
}

.privacy-settings .privacy-label:hover {
  cursor: pointer;
}

.privacy-settings .privacy-label.active::before {
  transform: rotate(90deg);
}

.button-container {
  display: flex;
}

.button-container .button {
  width: 20px;
  height: 20px;
  background-color: #fafafb;
  border-radius: 100%;
  border: 1px solid var(--border);
  position: relative;
  margin: 0 64px 0 0;
}

.button-container .button:hover {
  cursor: pointer;
}

.button-container .button::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: transparent;
  transition: all ease-in-out 0.36s;
}

.button-container .button.active {
  border: 1px solid var(--highlight);
}

.button-container .button.active::before {
  background-color: var(--highlight);
}

.button-container .button-label {
  position: absolute;
  font-weight: 400;
  top: 0px;
  left: 24px;
  bottom: 0;
  margin: 0 auto;
}

.privacy-description {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  transition: all 0.65s ease-in-out;
  border-bottom: 1px solid #dedede;
}

.privacy-description:last-of-type {
  border: none;
}

.privacy-description p {
  line-height: 150%;
  padding: 0px 32px 32px;
  opacity: 0;
  transition: opacity ease-in-out 1s;
}

.privacy-description p.active {
  opacity: 1;
}

.privacy-description p a {
  text-decoration: none;
  color: #2980b9;
  font-weight: 600;
}

.privacy-center--footer {
  width: calc(100% - 64px);
  max-width: 768px;
  height: calc(40px + 64px);
  padding: 32px 0;
  background: var(--privacy-center);
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #dedede;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
}

.privacy-center--footer .buttons-container {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.privacy-center--footer .buttons-container .button {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  padding: 0 16px;
  border: 2px solid transparent;
  border-radius: 25px;
  transition: background ease-in-out, color ease-in-out 0.36s;
}

/* incl  */

[hidden] {
  display: none !important;
}

.tabs {
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  padding: 0.15rem 0.5rem;
  background: rgba(17, 21, 36, 0.3);
  position: relative;
  z-index: 1;
  margin-bottom: 0.75rem;
}

.tabs:focus-visible {
  outline: 3px solid rgba(17, 21, 36, 0.5);
}

.tabs-marker {
  position: absolute;
  z-index: -1;
  background: rgba(17, 21, 36, 0.7);
  top: 0.4rem;
  bottom: 0.4rem;
  left: 0;
  border-radius: 0.4rem;
  transition: 0.15s;
}

.tabs-tab {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  appearance: none;
  transition: all 150ms;
  outline-width: 2px;
  outline-offset: 2px;
  padding: 1rem;
  border-width: 0;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 150ms;
  -moz-transition: all 150ms;
  -ms-transition: all 150ms;
  -o-transition: all 150ms;
}

.tabs-tab:hover {
  color: rgba(255, 255, 255, 1);
}

.tabs-tab.ui-active {
  pointer-events: none;
  color: rgba(255, 255, 255, 1);
}

.tabpanels {
  background-color: white;
  border-radius: 0.5rem;
  width: 100%;
}

.tabpanel {
  padding: 1rem 1.25rem;
  min-height: 5rem;
}

.tabpanel:focus-visible {
  outline: 3px solid rgba(17, 21, 36, 0.5);
}

.tabpanel.ui-enter-active {
  transition: all 200ms;
  transform-origin: center top;
}

.tabpanel.ui-enter-from {
  opacity: 0;
  transform: scale(0.98);
}

/*  */

.form-container {
  width: 100%;
  /* max-width: 500px; */
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); */
}

/* Progress bar */
.progress-bar {
  display: flex;
  /* justify-content: space-between; */
  margin-bottom: 20px;
}

.progress-step {
  width: 20%;
  text-align: center;
  color: #aaa;
  font-weight: bold;
  position: relative;
}

.progress-step::before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #ccc;
  position: absolute;
  top: 50%;
  left: -50%;
  transform: translateX(-50%);
  z-index: -1;
}

.progress-step.active,
.progress-step.completed {
  color: #4caf50;
}

.progress-step.active::before,
.progress-step.completed::before {
  background-color: #4caf50;
}

.progress-step:first-child::before {
  content: none;
}

/* Form steps */
.step {
  display: none;
}

.step.active {
  display: block;
}

.form-buttons {
  display: flex;
  justify-content: end;
  margin-top: 20px;
}

.form-buttons button {
  cursor: pointer;
}

.form-buttons button[disabled] {
  background-color: #ccc;
  cursor: not-allowed;
}

/*  */
.selectDates {
  border: 1px solid #007bff;
  cursor: pointer;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.normalInp {
  padding: 5px !important;
}
.normalInp::placeholder {
  padding: 5px !important;
}

.gallery-container {
  display: grid;
  grid-template-areas:
    "area1 area1 area2 area3 area3 area4 ."
    "area1 area1 area5 area5 area6 area6 area6";
  gap: 1.5vw;
  padding: 0;
  margin: 0;
  background: url(../img/plane.png) no-repeat;
  background-size: 180px;
  background-position: top right;
}
.img-collection {
  width: 100%;
  block-size: auto;
  object-fit: cover;
  object-position: 50% 50%;
  /* filter: drop-shadow(2px 6px 15px rgba(135, 139, 142, 0.6)); */
  border-radius: 1.5rem;
  border: 0.3vw solid white;
  /* -webkit-filter: drop-shadow(2px 6px 15px rgba(135, 139, 142, 0.6)); */
}
.img-col1 {
  position: relative;
  top: 10%;
  grid-area: area1;
  height: 80%;
  aspect-ratio: 1/2;
}
.img-col2 {
  grid-area: area2;
  height: 100%;
  aspect-ratio: 1/1;
}
.img-col3 {
  grid-area: area3;
  height: 100%;
  aspect-ratio: 2/1;
}
.img-col4 {
  grid-area: area4;
  height: 100%;
  aspect-ratio: 1.4/1;
}
.img-col5 {
  grid-area: area5;
  aspect-ratio: 1/1;
}
.img-col6 {
  grid-area: area6;
  aspect-ratio: 3/2;
}

/* about */

:root {
  --clr-white: #fff;
  --clr-black: #111;
}

.aboutContainer ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
}

.aboutContainer ul li {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--clr-white);
  position: relative;
  transform: translatey(0);
  transition: 0.2s ease-in-out;
  -webkit-transform: translatey(0);
  -moz-transform: translatey(0);
  -ms-transform: translatey(0);
  -o-transform: translatey(0);
}

.aboutContainer ul li:hover {
  transform: translatey(-0.625rem);
  cursor: pointer;
  -webkit-transform: translatey(-0.625rem);
  -moz-transform: translatey(-0.625rem);
  -ms-transform: translatey(-0.625rem);
  -o-transform: translatey(-0.625rem);
}

.aboutContainer ul li::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: hsl(0deg 0% 6.67% / 20%);
}

.aboutContainer ul li span {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 0.6rem;
  color: var(--clr-white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.aboutContainer ul li + li {
  margin-left: -0.625rem;
}

.aboutContainer ul img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.aboutContainer a {
  display: inline-block;
  text-decoration: none;
}

.aboutContainer main {
  padding-block: min(20vh, 2rem);
  width: calc(min(70rem, 90%));
  margin-inline: auto;
  color: var(--clr-black);
  position: relative;
}

@media screen and (min-width: 40rem) {
  .aboutContainer .heading {
    display: flex;
    justify-content: space-between;
    gap: 1em;
  }
}

.aboutContainer .heading h1 {
  letter-spacing: 0.025em;
  font-size: clamp(2rem, 1.4rem + 3.5vw, 5rem);
  line-height: 1;
  font-family: "SUSE", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.aboutContainer .heading aside {
  margin-top: 1.5em;
  max-width: 16.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

@media screen and (min-width: 40rem) {
  .aboutContainer .heading aside {
    margin-top: 3em;
  }
}

.aboutContainer .heading aside p {
  font-size: 0.9rem;
  color: var(--clr-black);
  line-height: 1.5;
}

.aboutContainer .container {
  margin-top: 2em;
  display: grid;
  gap: 1.5rem;
}

@media screen and (min-width: 40rem) {
  .aboutContainer .container {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3.5em;
    gap: 2rem;
  }
}

.aboutContainer .aboutContainerCard {
  padding-block: 1rem;
  background: var(--clr-white);
  border-radius: 1.2rem;
  position: relative;
  height: 24rem;
}

@media screen and (min-width: 53rem) {
  .aboutContainer .aboutContainerCard {
    border-radius: 1.8rem;
  }
}

.aboutContainer .aboutContainerCard p {
  position: absolute;
  right: 0;
  top: -1.25rem;
}

.aboutContainer .aboutContainerCard p a {
  font-size: 0.9rem;
  display: inline-block;
  color: var(--clr-black);
}

.aboutContainer .aboutContainerCard p a:hover {
  font-weight: 600;
}

.aboutContainer .card-inner {
  position: relative;
  width: inherit;
  height: inherit;
  border-bottom-right-radius: 0;
}

.aboutContainer .box {
  width: 100%;
  height: 100%;
  background: var(--clr-white);
  border-radius: 1.2rem;
  overflow: hidden;
}

.aboutContainer .videoBox {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.aboutContainer .videoBox iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.aboutContainer .imgBox {
  position: absolute;
  inset: 0;
}

.aboutContainer .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

@media screen and (min-width: 53rem) {
  .aboutContainer .imgBox img {
    border-radius: 1.6rem;
  }
}

.aboutContainer .more {
  position: absolute;
  top: -0.375rem;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--clr-white);
  padding: 0.625rem 0 0.625rem 0.625rem;
  border-bottom-left-radius: 1rem;
}

.aboutContainer .more::before,
.aboutContainer .more::after {
  content: "";
  position: absolute;
  background: transparent;
  width: 1.2rem;
  height: 1.2rem;
  box-shadow: 0.313rem 0.313rem 0px 0.313rem var(--clr-white);
}

.aboutContainer .more::before {
  top: 0.375rem;
  left: -1.188rem;
  border-bottom-right-radius: 2rem;
  transform: rotate(-90deg);
}

.aboutContainer .more::after {
  bottom: -1.188rem;
  right: -0.063rem;
  border-bottom-right-radius: 1rem;
  transform: rotate(-90deg);
}

.aboutContainer .arrow {
  width: 2.5rem;
  height: 2.5rem;
  border: 0.125rem solid #c8c8c8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
}

.aboutContainer .arrow:hover {
  background: var(--clr-black);
  border: 0.125rem solid var(--clr-black);
  color: var(--clr-white);
}

.aboutContainer .arrow svg {
  width: 1.063rem;
  color: var(--clr-black);
}

.aboutContainer .tag {
  position: absolute;
  bottom: -0.375rem;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--clr-white);
  padding: 0.625rem 0.625rem 0.625rem 0;
  border-top-right-radius: 1rem;
}

.aboutContainer .tag::before,
.aboutContainer .tag::after {
  content: "";
  position: absolute;
  background: transparent;
  width: 1.2rem;
  height: 1.2rem;
  box-shadow: 0.313rem 0.313rem 0px 0.313rem var(--clr-white);
}

.aboutContainer .tag::before {
  top: -1.188rem;
  left: 0;
  border-bottom-right-radius: 2rem;
  transform: rotate(90deg);
}

.aboutContainer .tag::after {
  bottom: 0.375rem;
  right: -1.188rem;
  border-bottom-right-radius: 1rem;
  transform: rotate(90deg);
}

.aboutContainer .tag a {
  font-size: 0.8rem;
  color: var(--clr-black);
  font-weight: 400;
  border: 0.125rem solid #c8c8c8;
  border-radius: 3.125rem;
  padding: 0.313rem 0.625rem;
  display: inline-block;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.aboutContainer .tag a:hover {
  color: var(--clr-white);
  background: var(--clr-black);
  border: 0.125rem solid var(--clr-black);
}

.aboutContainer .video {
  height: 20rem;
  align-self: flex-end;
}

.aboutContainer .poster {
  position: relative;
  display: inline-flex;
}

.aboutContainer .poster:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1534361960057-19889db9621e?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  transition: 1s ease;
  opacity: 0;
}

.aboutContainer .poster:hover::after {
  opacity: 1;
}

/* contactGridBg */

.contactGridBg {
  background: url(../img/contact-dark.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}

.contactGridBg h1 {
  font-size: 3rem;
}

/* searchInput */

.searchInput {
  width: 100%;
  height: 45px;
  padding: 12px;
  border: 0.3px solid lightgrey;
  outline: none;
  box-shadow: 0px 0px 20px -18px;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.searchInput:hover {
  border: 1px solid lightgrey;
  box-shadow: 0px 0px 20px -17px;
}

.searchInput:active {
  transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
}

.searchInput:focus {
  border: 1px solid grey;
}

#autoTypeInput {
  border-radius: 0px !important;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  -ms-border-radius: 0px !important;
  -o-border-radius: 0px !important;
}

.autoComplete_wrapper > input {
  /* border-bottom: 1px solid #007bff !important; */
  border-bottom: 1px solid white !important;
  padding-left: 30px !important;
  padding-right: 10px !important;
  /* padding-bottom: 15px !important; */
}

.autoComplete_wrapper > .startTypingEffect1::placeholder {
  padding-left: 10px !important;
  color: white;
}
.autoComplete_wrapper > .startTypingEffect12::placeholder {
  padding-left: 10px !important;
  color: black;
}

.selectDates {
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.3s;
  border-color: #007bff;
  border-radius: 30px;
  user-select: none;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.selectDates:hover {
  border-color: #007bff;
}

.selectDates.selected {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

.gallery {
  display: flex;
  margin: 10px auto;
  /* max-width: 600px; */
  position: relative;
  padding-top: 66.67%; /* 400px / 600px * 100% */
}

@media screen and (min-width: 600px) {
  .gallery {
    padding-top: 400px;
  }
}

.gallery__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 200px; */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.gallery__thumb {
  padding-top: 6px;
  margin: 6px;
  display: block;
}

.gallery__selector {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.gallery__selector:checked + .gallery__img {
  opacity: 1;
}

.gallery__selector:checked ~ .gallery__thumb > img {
  box-shadow: 0 0 0 3px #0be2f6;
}

#floatWaBtn {
  background-color: white;
  border-radius: 10px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 5px;
  border: 1px solid whitesmoke;
  -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0px 3px 5px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 3px 5px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

#floatWaBtn > div {
  width: 40px;
  height: 40px;
}

#floatWaBtn .dropdown-menu li {
  font-size: 0.85rem;
}

.activeFloatWaBtn {
  -webkit-transform: scale(1) !important;
  -ms-transform: scale(1) !important;
  transform: scale(1) !important;
  -moz-transform: scale(1) !important;
  -o-transform: scale(1) !important;
}

.floatingCounts {
  position: fixed;
  left: 20px;
  bottom: 10px;
  transition: all 0.3s ease;
  display: flex;
  color: white;
  transform: scale(1);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.heroFloatingIcon {
  position: fixed;
  right: 20px;
  bottom: 10px;
  transform: scale(1);
  transition: all 0.5s ease;
}

.heroFloatingIcon section {
  width: 1px;
  height: 100px;
  border: 1px dashed white;
  margin: auto;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.heroFloatingIcon > div {
  border: 1px solid white;
  color: white;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.removeFloatingCounts {
  transform: scale(0) !important;
  -webkit-transform: scale(0) !important;
  -moz-transform: scale(0) !important;
  -ms-transform: scale(0) !important;
  -o-transform: scale(0) !important;
}

.removeHeroFloatingIcon {
  transform: scale(0) !important;
  -webkit-transform: scale(0) !important;
  -moz-transform: scale(0) !important;
  -ms-transform: scale(0) !important;
  -o-transform: scale(0) !important;
}

.navFixedTop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.navFixedTop .mobile-menu-trigger span {
  display: block;
  height: 2px;
  background-color: #333333;
  width: 24px;
  position: relative;
}
.navFixedTop .mobile-menu-trigger span:before,
.navFixedTop .mobile-menu-trigger span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333333;
  /* background-color: white; */
}

.navFixedTop .menu > ul > li > a {
  color: #000000;
}

@media screen and (max-width: 480px) {
  .packageContainer {
    background-size: initial !important;
  }

  .footer-06 {
    padding-bottom: 2em !important;
  }
  .progress-step {
    width: 50% !important;
  }
  .contactCards {
    padding: 10px !important;
  }
  .contactCards > div {
    padding: 15px !important;
  }

  .contactCards svg {
    width: 20px;
    height: 20px;
  }
  .contactCards h6 {
    margin-bottom: 10px !important;
    margin-top: 10px !important;
  }
  .contactCards a {
    font-size: 0.9rem !important;
    margin-bottom: 10px !important;
    margin-top: 10px !important;
  }

  .floatingCounts h1 {
    font-size: 2rem !important;
    margin-bottom: 0px;
  }

  .header {
    padding-left: 0px !important;
  }
}
